home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / update-motd.postinst < prev    next >
Encoding:
Text File  |  2009-03-09  |  217 b   |  15 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     configure|reconfigure)
  7.         if dpkg --compare-versions "$2" lt-nl "1.6"; then
  8.             # init script from older update-motd's should be removed
  9.             rm -f /etc/init.d/update-motd
  10.         fi
  11.     ;;
  12. esac
  13.  
  14.  
  15.